Closed
Bug 1340143
Opened 8 years ago
Closed 8 years ago
[clang-format] Should put on a new line every classes when more than one is used
Categories
(Developer Infrastructure :: Source Code Analysis, defect)
Developer Infrastructure
Source Code Analysis
Tracking
(firefox54 affected)
RESOLVED
FIXED
Tracking | Status | |
---|---|---|
firefox54 | --- | affected |
People
(Reporter: Sylvestre, Assigned: andi)
References
Details
With our coding style
we should have:
class MyClass
: public X // When deriving from more than one class, put each on its own line.
, public Y
and clang-format will give us:
class MyClass : public X // When deriving from more than one class, put each on
// its own line.
,
public Y
Assignee | ||
Updated•8 years ago
|
Assignee: nobody → bpostelnicu
Reporter | ||
Comment 1•8 years ago
|
||
Forwarded upstream
https://bugs.llvm.org/show_bug.cgi?id=32017
Assignee | ||
Comment 2•8 years ago
|
||
Added patch here for upstream: https://reviews.llvm.org/D30487
Assignee | ||
Comment 3•8 years ago
|
||
The fix landed upstream: https://reviews.llvm.org/rL297467
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → FIXED
Updated•7 years ago
|
Product: Core → Firefox Build System
Updated•3 years ago
|
Product: Firefox Build System → Developer Infrastructure
You need to log in
before you can comment on or make changes to this bug.
Description
•